home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #4 / Amiga Plus CD - 2000 - No. 4.iso / Vollversion / CamD / development / examples / drum / smakefile < prev    next >
Makefile  |  2000-05-15  |  660b  |  26 lines

  1. #=============================================================================
  2. # Makefile for Drum Kit
  3. #=============================================================================
  4. #CFLAGS    =    gst=sc:gsts/std_headers.gst debug=fullflush ansi \
  5. #        unsignedchars nostackcheck ignore=62 ignore=51 ignore=147
  6.  
  7. #CFLAGS    =    debug=fullflush ansi \
  8. #        unsignedchars nostackcheck multiplecharconstants
  9.  
  10. CFLAGS    =    unsignedchars nostackcheck multiplecharconstants
  11.  
  12.  
  13. .c.o:
  14.     SC $*.c $(CFLAGS) nolink
  15.  
  16. .a.o:
  17.     asm -iinclude: $*
  18.  
  19. OBJS    = drum.o asymbevel.o timer.o arrows.o
  20. OUT    = drum
  21.  
  22. all: $(OUT)
  23.  
  24. $(OUT): $(OBJS)
  25.     SLINK lib:c.o $(OBJS) library lib:sc.lib lib:amiga.lib to $(OUT)
  26.